home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / ViewKit_dev.idb / usr / share / src / ViewKit / Components / Rolodex / Database.h.z / Database.h
Encoding:
C/C++ Source or Header  |  1996-09-20  |  417 b   |  26 lines

  1. /////////////////////////////////////////////////////////////
  2. // Record.h: Declare the interface to the rolodex database
  3. ////////////////////////////////////////////////////////////
  4. #ifndef DATABASE_H
  5. #define DATABASE_H
  6.  
  7. class Record;
  8. class Address;
  9.  
  10. class Database {
  11.  
  12.   private:
  13.  
  14.     Address *_addr;
  15.  
  16.   public:
  17.  
  18.     Database(Address *);
  19.     ~Database();
  20.  
  21.     void add(Record*);
  22.     void remove(Record *);
  23. };
  24.  
  25. #endif
  26.